home *** CD-ROM | disk | FTP | other *** search
-
- /*
- *
- * GDS110 : 図形デ-タの出力
- *
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- unsigned int GDS_display(unsigned char *wp) {
- union REGS inregs, outregs;
- struct SREGS segregs;
-
- segread(&segregs);
- segregs.ds=_DS;
- inregs.x.di=(unsigned int)wp;
- inregs.x.ax=0x8F00;
- int86x(0x92,&inregs,&outregs,&segregs);
- *(unsigned int *)wp=0;
- return (unsigned int)outregs.h.ah;
- }